projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
df4da58
)
* keyboard.c (Fcurrent_input_mode): Use XFASTINT to build the last
author
Jim Blandy
<jimb@redhat.com>
Tue, 25 May 1993 04:53:07 +0000
(
04:53
+0000)
committer
Jim Blandy
<jimb@redhat.com>
Tue, 25 May 1993 04:53:07 +0000
(
04:53
+0000)
element of the return value, not XSETINT.
src/keyboard.c
patch
|
blob
|
history
diff --git
a/src/keyboard.c
b/src/keyboard.c
index 6b267bd8e087b362c33fc15593239c301ef89c54..e9a9cd30d6b62937a14f6963906126ecb3a63af9 100644
(file)
--- a/
src/keyboard.c
+++ b/
src/keyboard.c
@@
-4578,7
+4578,7
@@
The elements of this list correspond to the arguments of\n\
val[0] = interrupt_input ? Qt : Qnil;
val[1] = flow_control ? Qt : Qnil;
val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
- X
SE
TINT (val[3], quit_char);
+ X
FAS
TINT (val[3], quit_char);
return Flist (val, sizeof (val) / sizeof (val[0]));
}